home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / cisco / account.shar / agg.awk next >
Text File  |  1992-08-07  |  257b  |  18 lines

  1. # 1.1 90/02/07  dfk@cwi.nl
  2.  
  3. /[0-9]*\.[0-9]*\./ {
  4.  
  5.     bytes[$1 " " $2] += $4;
  6.     packets[$1 " " $2] += $3;
  7. }
  8.  
  9. END {
  10.  
  11.     for (i in bytes)
  12.     {
  13.         split(i, fromto);
  14.         printf "%-16.16s %-16.16s ", fromto[1], fromto[2];
  15.         printf "%10d %15d\n", packets[i], bytes[i];
  16.     }
  17. }
  18.